Latest compiled and minified CSS

100

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">


<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>

Comments

Submit
1 Comments
  • 28/12/2022 21:38 - Asia/Calcutta

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}
body{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 65vh;
    background:rgb(111, 133, 242);
}
.center{
    margin-top: 115px;
    background: #fff;
    border-radius: 3px;
    box-shadow: rgb(241, 226, 196);
}
.centeri{
    display: flex;
    /* background-color: #111; */
    height: 100vh;
    /* color: #fff; */
    min-height: 500px;
    margin: auto 0 auto 40px;
}
table.tab {
    border-collapse: collapse;
    width: 100%;
}
table.tab td, th {
    border: 1px solid #ddd;
    padding: 8px;
}
table.tab tr:nth-child(even) {
    background-color: #f2f2f2;
}
table.tab tr:hover{
    background-color: #ddd;
}
table.tab th{
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #04AA6D;
    color: white;
}
p{
    font-size: 27px;
}
.red-text{
    color : red;
}
h2{
    text-align: center;
    padding-top: 15px;
}
.centeri .menu li{
    list-style: none;
    display: inline-block;
}
.menu li a{
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
alert{
    font-size: 20px;
}
form{
    width: 300px;
    margin-left: 20px;
    margin-top: 15px;
}
form label{
    margin-top: 20px;
    font-size: 17px;
}
form input{
    width: 100%;
    padding: 7px;
    margin: 8px;
    border: none;
    border-bottom: 1.8px solid rgb(163, 161, 161);
    outline: none;
    transition: border 0.6s ease-in-out;
}
input[type="radio"]{
    padding: 7px;
    margin: 6px;
    width: auto;
}
input[type="submit"]{
    width: 300px;
    height: 35px;
    margin-top: 20px;
    border: none;
    background: rgb(81, 239, 186);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}
form input:focus{
    border-bottom: 2.2px solid rgb(32, 35, 240);
}
input[type="submit"]:hover{
    background: rgb(108, 152, 246);
    border: 1.5px solid black;
}